home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / ContourUserPane.h < prev    next >
Encoding:
Text File  |  1995-06-12  |  758 b   |  38 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10. /* $Id: ContourUserPane.h,v 1.2 1993/05/04 16:21:28 davis Exp $ */
  11.  
  12. #import "Pane.h"
  13.  
  14. @class DoubleValueSortedList, EditMatrix;
  15.  
  16. @interface ContourUserPane:Pane
  17. {
  18.     id        scrollView;
  19.     EditMatrix    *levelsMatrix;
  20.     DoubleValueSortedList    *levelsList;
  21.     id        valueField;
  22.     id        valueFieldTitle;
  23.     id        addButton;
  24.     id        modifyButton;
  25.     id        deleteButton;
  26. }
  27.  
  28. - init;
  29.  
  30. - (BOOL)updateStatus:aStatus doc:aDoc;
  31.  
  32. - add:sender;
  33. - delete:sender;
  34. - modify:sender;
  35. - selectLevel:sender;
  36.  
  37. @end
  38.